home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000351_news@columbia.edu_Wed Feb 1 16:19:41 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10396
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Feb 1995 11:20:09 -0500
  3. Received: by apakabar.cc.columbia.edu id AA00859
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Feb 1995 11:20:04 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: LINUX KERMIT PROBLEM
  9. Date: 1 Feb 1995 16:19:41 GMT
  10. Organization: Columbia University
  11. Lines: 35
  12. Message-Id: <3gocat$mh@apakabar.cc.columbia.edu>
  13. References: <1995Jan30.175822.84185@kuhub.cc.ukans.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <1995Jan30.175822.84185@kuhub.cc.ukans.edu>,
  18. WEBB ADAM W <awebb@falcon.cc.ukans.edu> wrote:
  19. >I am using ckermit for linux as an external protocol in minicom (the
  20. >linux comm program). Everytime I transfer a file or group of files the
  21. >files turn out fine but it drops carrier after completion. This is very
  22. >annoying...
  23. >
  24. Quoting from section 11.1 of the ckuker.bwr file that comes with C-Kermit
  25. 5A(190), "C-Kermit as an External Protocol", which applies to "pmcomm" but
  26. probably is also relevant to this question (I'd appreciate feedback on
  27. this so I can update the documentation):
  28.  
  29. "pcomm" is a general-purpose terminal program that provides file transfer
  30. capabilities itself (X- and YMODEM variations) and the ability to call on
  31. external programs to do file transfers (ZMODEM and Kermit, for example).
  32. You can tell pcomm the command to send or receive a file with an external
  33. protocol:
  34.             send                receive
  35.     ZMODEM        sz <filename>            rz
  36.     Kermit        kermit -s <filename>        kermit -r
  37.  
  38. pcomm runs external programs for file transfer by making stdin and stdout
  39. point to the modem port, and then exec-ing "/bin/sh -c xxx" (where xxx is
  40. the appropriate command).  However, C-Kermit does not treat stdin and
  41. stdout as the communication device unless you instruct it:
  42.  
  43.             send                receive
  44.     Kermit        kermit -l 0 -s <filename>    kermit -l 0 -r
  45.  
  46. The "-l 0" option means to use file descriptor 0 for the communication device.
  47.  
  48. In general, any program can pass any open file descriptor to C-Kermit for the
  49. communication device in the "-l" command-line option.
  50.  
  51. (End quote)